home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_07_08
/
v7n8068b.txt
< prev
next >
Wrap
Text File
|
1989-10-01
|
343b
|
23 lines
*****Listing 2*****
init.h
#ifdef DEBUG
#define INIT = NULL
#else
#define INIT
#endif
any other file
#include "stdio.h"
#include "init.h"
...
someproc(...)
{
char * a INIT;
something * b INIT;
...
}
**********